"Bass Curve" is a growth curve frequantly used to forecast new technology and durable product growth model. Bass curve considers that there is constant maximum amount of adopters and adoption rate influenced by two impacts. Internal impact illustrates word of mouth or imitation's influence, while, external impact reflects the influence of marketing strategies and etc. $ Number of customers who will purchase the product at time t = p * remaining potential + Q * adopters * remaining potential $

Formula

Formula for the Bass Curve is: $$ n(t) = [p+\frac{q}{m}N(t-1)][m-N(t-1)] $$

Curve Analysis

Cumulative number of adopters $$ N(t) = m \frac{1-e^{-(p+q)t}}{1+\frac{q}{p}e^{-(p+q)t}} $$ Noncomulative number of adopters $$ n(t) = \frac{dN(t)}{dt} = m\frac{p(p+q)^2e^{-(p+q)t}}{[p+qe^{-(p+q)t}]^2}$$ Time of peak adoption $$ T = -\frac{1}{p+q}\ln(\frac{p}{q})$$ Number of adopters at peak time $$ n(t) = \frac{1}{4q}(p+q)^2 $$

Analogous Bass Curve

Analogous Bass Curve can provide growth curve based on provided the upper limit of growth, t the period of estimation, and the p and q coefficient according ot analogous case. Following is an example of Analogous Bass Curve. Bass_AC(0.16, 0.304, 100000, 20) calculates the growth over 20 periods, where the highest growth can be reached is 100000 And, p and q coefficients are 0.016 and 0.304 respectively. There coefficients are correspondence with the room air conditioning adoption pattern from 1950 to 1963. Ouput shows the cumulative growth and growth rate for a given period from 1 to 20.

library(pander)
pander(Bass_AC(0.016, 0.304, 100000, 20))

Bass_AC_Plot function plots the result of Bass_AC. For example, Bass_AC_Plot(0.016, 0.304, 100000, 20) plots the result of Bass_AC(0.016, 0.304, 100000, 20).

Bass_AC_Plot(0.016, 0.304, 100000, 20)


nchaichi/TF documentation built on May 12, 2019, 7:21 p.m.